a1bc7570d92f4359d19a72c2e6900351b15ef209,Frameworks/Ajax/Ajax/Sources/er/ajax/AjaxTabbedPanel.java,AjaxTabbedPanel,appendToResponse,#WOResponse#WOContext#,112

Before Change


	            response.appendContentString("); ");
	
	            response.appendContentString("AjaxTabbedPanel.selectTab('");
	            response.appendContentString(idString);
	            response.appendContentString("', '");
	            response.appendContentString(tabID);
	            response.appendContentString("'); AjaxTabbedPanel.selectPanel('");

After Change


	
	            // Load the tab contents
	            response.appendContentString("AjaxTabbedPanel.loadPanel('");
	            response.appendContentString(idString);
	            response.appendContentString("', '");
	            response.appendContentString(panelID);
	            response.appendContentString("', '");
	            response.appendContentString((busyDiv != null) ? (String)busyDiv.valueInComponent(component) : "");
	            response.appendContentString("', ");
	            response.appendContentString(tab.refreshesOnSelect(context.component()).toString());
	            response.appendContentString("); ");
	            
	            // Select the tab contents
	            response.appendContentString("AjaxTabbedPanel.selectPanel('");
	            response.appendContentString(paneControlID);
	            response.appendContentString("', '");
	            response.appendContentString(panelID);
	            response.appendContentString("'); ");
	            
	            // Select the tab control
	            response.appendContentString("AjaxTabbedPanel.selectTab('");
	            response.appendContentString(idString);
	            response.appendContentString("', '");
	            response.appendContentString(tabID);
	            response.appendContentString("'); ");
	            
	            response.appendContentString("\">");
	            response.appendContentString((String) tab.name().valueInComponent(component));
	            response.appendContentString("</a>\n");
	            response.appendContentString("</li>\n");